home *** CD-ROM | disk | FTP | other *** search
/ Aminet 38 / Aminet 38 (2000)(Schatztruhe)[!][Aug 2000].iso / Aminet / docs / help / arexxbegin.lha / ARexx_For_Beginners / Articles_01-10 / Example9-1.rexx < prev    next >
Encoding:
OS/2 REXX Batch file  |  1994-12-14  |  175 b   |  9 lines

  1. /* Example09-1 */
  2.  
  3. SAY 'Enter Number 1'
  4. PULL N1
  5. SAY 'Enter Number 2'
  6. PULL N2
  7. SAY N1 'to the power of' N2 'is' N1 ** N2
  8. SAY N1 'divided by' N2 '=' N1 % N2 'remainder' N1 // N2
  9.